Tables

<TABLE>
<TR>
<TD></TD>

</TR>
</TABLE>




How do I...?

Glad you asked!


This is going to be like "show and tell" from now on. I'll show you the table and then tell you the code. I'll give an explanation of what it's doing as well. Here goes.

Honk if you're........


What I did was this:
<TD WIDTH="50">Honk</TD>
<TD WIDTH="100">if you're........</TD>

The TD WIDTH=" " I used the number of pixels; you can also use percentages TD WIDTH="50%", though they are not as exact.



Honk if you're......


For this effect, I used this:
<TABLE BORDER=3 CELLPADDING="10">

Cellpadding is simply the amount of free space between the border of the cell and its contents.



Honk if you're.......


For this we used:
<TABLE BORDER=3 CELLSPACING="10">

Cellspacing is simply the amount of free space between the cells.



Honk if you're.......


We used both the cellpadding and cellspacing tags. <TABLE BORDER=3 CELLPADDING="10" CELLSPACING="10"> You can get many good effects and take up space using these tags together.


Tutorials Lesson 1 Lesson 2 Lesson 4 Lesson 5